home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / image / qpng17e.zip / INSTALL.DAT / DRVSRC / DRVSRC.ZIP / V7VRAM2.ASM < prev    next >
Assembly Source File  |  1995-03-31  |  695b  |  40 lines

  1. ;
  2. ; QPV/386 video driver
  3. ; for Video Seven VRam II Revision V
  4. ;
  5. ; Contributed by:  Kosmas Einbrodt, Giessen, Germany
  6. ; Kosmas.Einbrodt@math.uni-giessen.de
  7. ;
  8.  
  9.  
  10.         .286
  11. Code    Segment Para 'Code'
  12.         Assume  cs:Code
  13.         Org 100h
  14.  
  15. Procs   dw      Bank,Init,Exit,0
  16.  
  17. Bank:   push    ax
  18.         shl     al,04h
  19.         mov     ah,al
  20.         mov     al,0e8h
  21.         mov     dx,03c4h
  22.         out     dx,ax
  23.         pop     ax
  24.         retf
  25.  
  26. Init:   mov     dx,03c4h
  27.         mov     al,06h
  28.         out     dx,al
  29.         inc     dx
  30.         mov     al,0eah
  31.         out     dx,al
  32.         retf
  33.  
  34. Exit:   retf
  35.  
  36. Code    Ends
  37.         End Procs
  38.  
  39. ; End of source.
  40.